home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Modules / protos / stropmodule_protos.h < prev    next >
Text File  |  1998-01-26  |  2KB  |  25 lines

  1.  
  2. /* stropmodule.c */
  3. static PyObject *split_whitespace ( char *s , int len , int maxsplit );
  4. static PyObject *strop_splitfields ( PyObject *self , PyObject *args );
  5. static PyObject *strop_joinfields ( PyObject *self , PyObject *args );
  6. static PyObject *strop_find ( PyObject *self , PyObject *args );
  7. static PyObject *strop_rfind ( PyObject *self , PyObject *args );
  8. static PyObject *do_strip ( PyObject *args , int striptype );
  9. static PyObject *strop_strip ( PyObject *self , PyObject *args );
  10. static PyObject *strop_lstrip ( PyObject *self , PyObject *args );
  11. static PyObject *strop_rstrip ( PyObject *self , PyObject *args );
  12. static PyObject *strop_lower ( PyObject *self , PyObject *args );
  13. static PyObject *strop_upper ( PyObject *self , PyObject *args );
  14. static PyObject *strop_capitalize ( PyObject *self , PyObject *args );
  15. static PyObject *strop_swapcase ( PyObject *self , PyObject *args );
  16. static PyObject *strop_atoi ( PyObject *self , PyObject *args );
  17. static PyObject *strop_atol ( PyObject *self , PyObject *args );
  18. static PyObject *strop_atof ( PyObject *self , PyObject *args );
  19. static PyObject *strop_maketrans ( PyObject *self , PyObject *args );
  20. static PyObject *strop_translate ( PyObject *self , PyObject *args );
  21. static int mymemfind ( char *mem , int len , char *pat , int pat_len );
  22. static int mymemcnt ( char *mem , int len , char *pat , int pat_len );
  23. static char *mymemreplace ( char *str , int len , char *pat , int pat_len , char *sub , int sub_len , int count , int *out_len );
  24. static PyObject *strop_replace ( PyObject *self , PyObject *args );
  25.